home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
HAM Radio 3.2
/
Ham Radio Version 3.2 (Chestnut CD-ROMs)(1993).ISO
/
packet
/
pacstat
/
parse.h
< prev
next >
Wrap
Text File
|
1987-10-18
|
507b
|
39 lines
/* parse.h Parse defines for report.exe */
#define numcom 10
struct {
char c[8];
} comtext [0]
= {
"fnull "
,"CIRCUIT "
,"END "
,"HELP "
,"INPUT "
,"OUTPUT "
,"QUIT "
,"RAW "
,"RECORD "
,"RR "
,"SELECT "
,"\0"
};
enum com_type {
c_fnull, /* must be first */
c_circuit,
c_end,
c_help,
c_input,
c_output,
c_quit,
c_raw,
c_record,
c_rr,
c_select,
c_lnull,
};
/* must be in the same order as comtext above */